8df474ea97552d96733e17366fe0e33d0ac85a74,jetty-client/src/main/java/org/eclipse/jetty/client/HttpDestination.java,HttpDestination,returnIdleConnection,#HttpConnection#,414
Before Change
_connections.remove(connection);
if (!_queue.isEmpty() && _client.isStarted())
startNewConnection();
}
}
After Change
Log.ignore(e);
}
boolean startConnection = false;
synchronized (this)
{
_idle.remove(connection);
_connections.remove(connection);
if (!_queue.isEmpty() && _client.isStarted())
startConnection = true;
}
if (startConnection)
startNewConnection();
}
public void send(HttpExchange ex) throws IOException